:root {
  --text-color: #000;
  --secondary-color: #5151ef;
  --main-color: white;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --sub-text-color: #808080;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: var(--light-bg-color);
  color: var(--text-color);
}

.terms-container {
  max-width: 960px;
  margin: auto;
  padding: 60px 20px;
  background: var(--main-color);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

h1 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h2 {
  margin-top: 40px;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

p, li {
  color: var(--sub-text-color);
  font-size: 1rem;
  line-height: 1.8;
}

ul {
  margin-left: 20px;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
